home *** CD-ROM | disk | FTP | other *** search
/ CD Ware Multimedia 1995 May / cd Ware (Juegos) Epimundo.iso / DOS / DATABASE / F.ZIP / F.DOC < prev    next >
Encoding:
Text File  |  1994-12-18  |  5.1 KB  |  159 lines

  1. Welcome to the documentation for F.
  2.  
  3. What is F?
  4. ----------
  5.  
  6.  F is a freeware freeform filer. It is a simple database that lets you save
  7.  and retrieve information. F is small and simple. It takes about three
  8.  minutes to learn how to use F.
  9.  
  10. How do I set F up?
  11. ------------------
  12.  
  13.  Just put the file F.COM in any directory on your DOS path.
  14.  
  15. How do I run F?
  16. ---------------
  17.  
  18.  F runs at the DOS command prompt. You run F by typing its name followed by
  19.  a space and the command you want to execute.
  20.  
  21. What commands does F understand?
  22. --------------------------------
  23.  
  24.  There are three basic operations that F understands. F lets you 1) Add lines
  25.  to its database 2) Look things up in its database and 3) Delete things from
  26.  its database.
  27.  
  28. How do I add things to F's database?
  29. ------------------------------------
  30.  
  31.  You add items to F's database by typing F followed by whatever you want to
  32.  add followed by a + symbol. The following example will add three items to
  33.  F's database:
  34.  
  35.     F Monday 10:00 AM Meet with Bob about widgets+
  36.     F Bob Simpson 555-1234+
  37.     F buy catfood+
  38.  
  39. How do I look things up in F's database?
  40. ----------------------------------------
  41.  
  42.  You look things up by typing F followed by whatever you are looking for.
  43.  If you have entered the example above, typing
  44.  
  45.     F bob
  46.  
  47.  will display
  48.  
  49.     Monday 10:00 AM Meet with Bob about widgets
  50.     Bob Simpson 555-1234
  51.  
  52.  The searching is case-insensitive, so it doesn't matter if you type Bob,
  53.  bob or BOB. While F is searching, it displays a little spinner to let you
  54.  know it's working.
  55.  
  56. How do I delete something from F's database?
  57. --------------------------------------------
  58.  
  59.  Let's say you bought the catfood and want to get rid of the "buy catfood"
  60.  note. Do this:
  61.  
  62.     F cat-
  63.  
  64.  F will display
  65.  
  66.     Delete this line:
  67.     buy catfood
  68.     ?
  69.  
  70.  Answer "Yes" or "y" to this question and the line will be deleted. Answering
  71.  with anything that doesn't begin with a "y" will tell F to keep the line.
  72.  
  73. How do I see everything that is in F's database?
  74. ------------------------------------------------
  75.  
  76.  Enter "F *" at the DOS prompt.
  77.  
  78. What if I can't remember the commands to run F?
  79. -----------------------------------------------
  80.  
  81.  Just type "F" with nothing following it on the command line. F will display
  82.  a little message describing the commands.
  83.  
  84. What kinds of things can F be used for?
  85. ---------------------------------------
  86.  
  87.  Well, I use F instead of all of the little pieces of paper I used to jot
  88.  notes on. I use F to store grocery lists, phone numbers, email addresses,
  89.  meeting reminders, etc. If you put a unique word into your notes, it makes
  90.  it easy to find things. For example, I put the day of the week in all my
  91.  notes relating to a certain day, I can then just enter
  92.  
  93.   F monday
  94.  
  95.  to see all the things I have to do on Monday. When I finish a task, I use
  96.  the "-" option to delete that task from the database.
  97.  
  98. Where exactly is F's database stored and what's it called?
  99. ----------------------------------------------------------
  100.  
  101.  F stores its data in a file called F.DAT and it's stored in whatever DOS
  102.  directory F is living in. The first time F runs, it creates an empty
  103.  F.DAT file.
  104.  
  105. Can I edit F's data with anything other than F?
  106. -----------------------------------------------
  107.  
  108.  Sure. F.DAT is an ASCII file and it can be edited with any text editor that
  109.  can use ASCII files. Each line in F.DAT is a record in the database. Since
  110.  80 characters is the  width of a PC screen, each line should be at most 80
  111.  characters long.
  112.  
  113. I've got a bunch of data in another program. Can I transfer the data into F?
  114. ---------------------------------------------------------------------------
  115.  
  116.  Maybe. If your program can export ASCII, you can create a text file and
  117.  call it F.DAT. Just put that file in the same DOS directory as F.COM 
  118.  and remember to keep each line limited to a maximum of 80 characters.
  119.  
  120. How much does F cost?
  121. ---------------------
  122.  
  123.  Nothing, its free. I wrote it in about an hour and and then spent a week
  124.  tweaking it and writing this doc. Use F, have fun with it give to your
  125.  friends, whatever.
  126.  
  127.  If you use and like F, I would appreciate it if you'd drop me a postcard
  128.  or an Email note.
  129.  
  130.  Postcards can be sent to:
  131.  
  132.  Kent Peterson
  133.  360 NW Dogwood A-201
  134.  Issaquah, WA 98027 USA
  135.  
  136.  and you can send Email to me either via the Internet or Compuserve
  137.  
  138.  Internet -- peterson@halcyon.com
  139.           or
  140.  Compuserve -- 72310,2174
  141.  
  142. I'd like to have several different data files. Can F handle that?
  143. -----------------------------------------------------------------
  144.  
  145.  Sort of. If you make a copy of F.COM with a different name, that new copy
  146.  will use a different data file. For example, if you do this
  147.  
  148.   copy f.com phone.com
  149.  
  150.  the new program PHONE will use a data file called PHONE.DAT.
  151.  
  152. Where do I go for more information about F?
  153. -------------------------------------------
  154.  
  155.  This is it. ALready this file is bigger than F itself. You can always send
  156.  me email or a postcard with your question, but I can't promise a response.
  157.  
  158.  
  159.